home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / AlphaSpell / MUISpell / Source / Gui.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-27  |  2.4 KB  |  85 lines

  1. /***************************************************************************
  2. *                                                                                                    *
  3. *    MUISpell                                                                                    *
  4. *    Spellchecking without texteditor, requires AlphaSpell and MUI            *
  5. *    Copyright (C) 1996  Dirk Holtwick                                                    *
  6. *                                                                                                    *
  7. *    This program is free software; you can redistribute it and/or modify    *
  8. *    it under the terms of the GNU General Public License as published by    *
  9. *    the Free Software Foundation; either version 2 of the License, or        *
  10. *    (at your option) any later version.                                                *
  11. *                                                                                                    *
  12. *    This program is distributed in the hope that it will be useful,            *
  13. *    but WITHOUT ANY WARRANTY; without even the implied warranty of            *
  14. *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            *
  15. *    GNU General Public License for more details.                                    *
  16. *                                                                                                    *
  17. *    You should have received a copy of the GNU General Public License        *
  18. *    along with this program; if not, write to the Free Software                *
  19. *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.                    *
  20. *                                                                                                    *
  21. *      Author:   Dirk Holtwick                                                                *
  22. *                    Karlstr. 59                                                                    *
  23. *                    47119 Duisburg                                                                *
  24. *                    GERMANY                                                                        *
  25. *                    dirco@uni-duisburg.de                                                    *
  26. *                                                                                                    *
  27. ****************************************************************************/
  28.  
  29. #include <libraries/mui.h>
  30. #include <proto/muimaster.h>
  31. #include <clib/exec_protos.h>
  32. #include <exec/memory.h>
  33. #include <clib/alib_protos.h>
  34.  
  35. struct ObjApp
  36. {
  37.     APTR    App;
  38.     APTR    men_spell;
  39. //    APTR    win_spell;
  40.     APTR    str_spell;
  41.     APTR    lv_spell;
  42.     APTR    bt_learn;
  43.     APTR    bt_guess;
  44.     APTR    bt_accept;
  45.     APTR    bt_ignore;
  46.     APTR    win_view;
  47.     APTR    bt_tback;
  48.     APTR    bt_tskip;
  49.     APTR    cy_line;
  50.     APTR    txt_view;
  51.     APTR    gauge_txt;
  52.     APTR    lv_view;
  53.     APTR    pa_spell;
  54.     APTR     pa_button;
  55.     APTR    win_prefs;
  56.     APTR    cy_ram;
  57.     APTR    sl_back;
  58.     APTR    sl_forward;
  59.     APTR    sl_buffer;
  60.     APTR    str_drawer;
  61.     APTR    pa_drawer;
  62.     APTR    str_books;
  63.     APTR    pa_books;
  64.     APTR    str_user;
  65.     APTR    pa_command;
  66.     APTR    str_command;
  67.     APTR    pa_keyfile;
  68.     APTR    str_keyfile;
  69.     APTR    sl_rate;
  70.     APTR    bt_save_prefs;
  71.     APTR    bt_use_prefs;
  72.     APTR    bt_cancel_prefs;
  73.     APTR    win_info;
  74.     APTR    bt_info;
  75.     char *    STR_txt_view;
  76.     char *    STR_tx_info;
  77.     char *    cy_ramContent[5];
  78.     char *    cy_lineContent[3];
  79. };
  80.  
  81.  
  82. extern struct ObjApp * CreateApp(void);
  83. extern void DisposeApp(struct ObjApp *);
  84.  
  85.